home *** CD-ROM | disk | FTP | other *** search
/ AOL File Library: 2,801 to 2,900 / aol-file-protocol-4400-2801-to-2900.zip / AOLDLs / C++ Files Library / SK (Sockects) 1.4.1 r2 / SK v1.4.1 r2.sit / SK 1.4.1 r2 / SK / SKTest.r < prev    next >
Text File  |  1993-08-27  |  1KB  |  37 lines

  1. /*********************************************************************
  2. File        :    SKTest            -    Testing gear
  3. Author    :    Matthias Neeracher <neeri@iis.ethz.ch>
  4. Modif.    :    Stephan Deibel <sdeibel@dsg.harvard.edu>
  5. Started    :    15Jun92                                Language    :    THINK C 6.0
  6.                 13Jul92    MN    Include SK.r
  7.                 13Jul93    SD    Port to THINK C 6.0
  8. Last        :    13Jul93
  9. *********************************************************************/
  10.  
  11. #define __kPrefSize    512
  12. #define __kMinSize    512
  13.  
  14. #include "HD:Arachne:SK:SK.r"
  15.  
  16. resource 'SIZE' (-1) {
  17.     reserved,
  18.     acceptSuspendResumeEvents,
  19.     reserved,
  20.     canBackground,                /* we can background; we don't currently, but our sleep value */
  21.                                 /* guarantees we don't hog the Mac while we are in the background */
  22.     notMultiFinderAware,        /* this says we do our own activate/deactivate; don't fake us out */
  23.     onlyBackground,                /* this is definitely not a background-only application! */
  24.     dontGetFrontClicks,            /* change this is if you want "do first click" behavior like the Finder */
  25.     ignoreChildDiedEvents,        /* essentially, I'm not a debugger (sub-launching) */
  26.     not32BitCompatible,            /* this app should not be run in 32-bit address space */
  27.     isHighLevelEventAware,
  28.     localAndRemoteHLEvents,
  29.     reserved,
  30.     reserved,
  31.     reserved,
  32.     reserved,
  33.     reserved,
  34.     __kPrefSize * 1024,
  35.     __kMinSize * 1024    
  36. };
  37.